home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / ZTIMER11.ARJ / BUILDALL.BAT next >
DOS Batch File  |  1992-04-21  |  640b  |  25 lines

  1. @echo off
  2. rem
  3. rem Batch file to build all versions of the Zen Timer library
  4. rem
  5. make -B -Dsmall build
  6. if errorlevel 1 goto errorend
  7. make -B -Dmedium build
  8. if errorlevel 1 goto errorend
  9. make -B -Dcompact build
  10. if errorlevel 1 goto errorend
  11. make -B -Dlarge build
  12. if errorlevel 1 goto errorend
  13. make -B -Dhuge build
  14. if errorlevel 1 goto errorend
  15. make install_inc
  16. make clean
  17. echo Done!
  18. goto end
  19. :errorend
  20. echo ****************************************************************
  21. echo * An error occurred while building the Zen Timer library.      *
  22. echo ****************************************************************
  23. :end
  24.  
  25.